/-app
/-app/layout
/-app/tests
TestCase.ts
TestPage.ts
Application.ts
/-boot
/-imports
/-storage
/-storage/attached
/-storage/attached/api
LoadStorage.ts
DetectStorage.ts
LoadStorageRecipient.ts
UpdateStorage.ts
LocalStorageStorage.ts
WebSQLStorage.ts
/-tests
/-tests/storage
/-tests/storage/attached
AttachedStorage.ts
LocalStorageStorageTests.ts
_sampleTests.ts
/-typings
stringUtils.ts
teapo.html
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<title>Teapo v0.5j</title>
5
 
6
<style>###base.css###</style>
7
<style>###boot/boot.css###</style> 
8
 
9
</head>
10
<body>
11
 
12
<script>###boot/early-0.js###</script>
13
<script>###imports/knockout/knockout-3.0.0.js###</script>
14
<script>###boot/early-1-with-knockout.js###</script>
15
 
16
<!-- Knockout.js templates --->
17
<script id=Application type="text/html">###app/layout/Application.html###</script>
18
<script id=TestPage type="text/html">###app/layout/TestPage.html###</script>
19
<script id=TestCase type="text/html">###app/layout/TestCase.html###</script>
20
 
21
<script>  
22
 
23
(function(teapo) {
24
 
25
try {
26
###app/Application.ts:build###
27
 
28
try {
29
  var app = new teapo.app.Application();
30
}
31
catch (initiError) {
32
  alert('Error in Teapo initialization: '+initError.message+' '+initError.stack);
33
}
34
 
35
}
36
catch (declarationError) {
37
  alert('Error in Teapo declaration: '+declarationError.message+' '+declarationError.stack);
38
}
39
 
40
 
41
})(teapo);
42
</script>
43
 
44
</body>
45
</html>